home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
MCASM.RAR
/
MC_ASM.EXE
/
WROX_ASM
/
CH12
/
EFFECTS
/
COLTEST.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-29
|
304b
|
14 lines
#include "colmodel.c"
float h,l,s,r,g,b;
void main(void)
{
RGB2HLS(0.9,0.7,0.12,&h,&l,&s);
HLS2RGB(h,l,s,&r,&g,&b);
RGB2HSV(0.9,0.7,0.52,&h,&l,&s);
HSV2RGB(h,l,s,&r,&g,&b);
RGB2YIQ(0.34,0.7,0.52,&h,&l,&s);
YIQ2RGB(h,l,s,&r,&g,&b);
RGB2CIE(0.34,0.7,0.52,&h,&l,&s);
CIE2RGB(h,l,s,&r,&g,&b);
}